home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / dev / gui / mui23dev.lha / MUI / Developer / Autodocs / MUI_Menuitem.doc < prev    next >
Text File  |  1994-12-23  |  3KB  |  120 lines

  1. TABLE OF CONTENTS
  2.  
  3. Menuitem.mui/Menuitem.mui
  4. Menuitem.mui/MUIA_Menuitem_Checked
  5. Menuitem.mui/MUIA_Menuitem_Checkit
  6. Menuitem.mui/MUIA_Menuitem_Enabled
  7. Menuitem.mui/MUIA_Menuitem_Exclude
  8. Menuitem.mui/MUIA_Menuitem_Shortcut
  9. Menuitem.mui/MUIA_Menuitem_Title
  10. Menuitem.mui/MUIA_Menuitem_Toggle
  11. Menuitem.mui/MUIA_Menuitem_Trigger
  12. Menuitem.mui/Menuitem.mui
  13.  
  14.     Menuitem class describes a single menu item. You can use
  15.     all of the gadtools menus features expect Image menus here.
  16.  
  17.     Since Menuitem class is a subclass of Family class, you can
  18.     add other menu items as children of a menu item to indicate
  19.     sub menus. MUI does not limit the level of sub menus, but
  20.     the operating system currently allows a maximum nesting
  21.     level of one. Because of this, children of menu items
  22.     should not contain other menu items for now, the results
  23.     are unpredictable.
  24.  
  25.     Note: For handling menu items, MUIA_UserData and the methods
  26.     MUIM_SetUData, MUIM_GetUData and MUIM_FindUData can become
  27.     quite useful. See the Menu demo program and the accompanying
  28.         documentation for details.
  29. Menuitem.mui/MUIA_Menuitem_Checked
  30.  
  31.     NAME
  32.     MUIA_Menuitem_Checked -- (V8 ) [ISG], BOOL
  33.  
  34.     FUNCTION
  35.     set/get the checked state of a checkit menu item.
  36.  
  37.     SEE ALSO
  38.     MUIA_Menuitem_Checkit, MUIA_Menuitem_Enabled, 
  39.     MUIA_Menuitem_Exclude
  40. Menuitem.mui/MUIA_Menuitem_Checkit
  41.  
  42.     NAME
  43.     MUIA_Menuitem_Checkit -- (V8 ) [ISG], BOOL
  44.  
  45.     FUNCTION
  46.     Set to TRUE and this item will become a checkmarkable item.
  47.  
  48.     SEE ALSO
  49.     MUIA_Menuitem_Checked, MUIA_Menuitem_Enabled,
  50.     MUIA_Menuitem_Exclude
  51. Menuitem.mui/MUIA_Menuitem_Enabled
  52.  
  53.     NAME
  54.     MUIA_Menuitem_Enabled -- (V8 ) [ISG], BOOL
  55.  
  56.     FUNCTION
  57.     enabled/disalbe the menu item.
  58.  
  59.     SEE ALSO
  60.     MUIA_Menuitem_Checkit, MUIA_Menuitem_Checked,
  61.     MUIA_Menuitem_Exclude
  62. Menuitem.mui/MUIA_Menuitem_Exclude
  63.  
  64.     NAME
  65.     MUIA_Menuitem_Exclude -- (V8 ) [ISG], LONG
  66.  
  67.     FUNCTION
  68.     bitmask of menu item numbers that are to be deselected
  69.     when this one is selected.
  70.  
  71.     SEE ALSO
  72.     MUIA_Menuitem_Checkit, MUIA_Menuitem_Enabled,
  73.     MUIA_Menuitem_Checked
  74. Menuitem.mui/MUIA_Menuitem_Shortcut
  75.  
  76.     NAME
  77.     MUIA_Menuitem_Shortcut -- (V8 ) [ISG], char
  78.  
  79.     FUNCTION
  80.     Define the shortcut for a menu item.
  81.  
  82.     SEE ALSO
  83.     MUIA_Menuitem_Title
  84. Menuitem.mui/MUIA_Menuitem_Title
  85.  
  86.     NAME
  87.     MUIA_Menuitem_Title -- (V8 ) [ISG], STRPTR
  88.  
  89.     FUNCTION
  90.     Define the items title.
  91.  
  92.     SEE ALSO
  93.     MUIA_Menuitem_Shortcut
  94. Menuitem.mui/MUIA_Menuitem_Toggle
  95.  
  96.     NAME
  97.     MUIA_Menuitem_Toggle -- (V8 ) [ISG], BOOL
  98.  
  99.     FUNCTION
  100.     Define the state of the TOGGLE flag for this item.
  101.  
  102.     SEE ALSO
  103.     MUIA_Menuitem_Checkit, MUIA_Menuitem_Enabled,
  104.     MUIA_Menuitem_Checked
  105. Menuitem.mui/MUIA_Menuitem_Trigger
  106.  
  107.     NAME
  108.     MUIA_Menuitem_Trigger -- (V8 ) [..G], struct MenuItem *
  109.  
  110.     FUNCTION
  111.     This attribute is set to a pointer to the struct MenuItem of
  112.     the item object when the item is selected. By setting up
  113.     notification on this attribute with MUIV_EveryTime, you can
  114.     react on menu actions and query the MenuItems flags
  115.     immediately.
  116.  
  117.     Note that menu reactions are also possible any 
  118.     maybe a bit easier with MUIA_Application_ReturnID,
  119.     MUIA_Application_MenuAction and MUIA_Window_MenuAction.
  120.